X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/38c7d3f9eb7d63937c6654ff5dd6046ce02dd59c..74c155708d85abfc2cf227c08de4f27003015b3f:/Super%20Polarity/Actors/Ship.cs diff --git a/Super Polarity/Actors/Ship.cs b/Super Polarity/Actors/Ship.cs index b4706ac..2839c97 100644 --- a/Super Polarity/Actors/Ship.cs +++ b/Super Polarity/Actors/Ship.cs @@ -11,7 +11,6 @@ namespace SuperPolarity { public enum Polarity : byte { Negative, Positive, Neutral }; - protected uint HP; public Polarity CurrentPolarity; public uint MagneticRadius; @@ -22,10 +21,12 @@ namespace SuperPolarity protected bool Magnetizing; - public Ship(Game newGame) : base(newGame) { + public Ship(SuperPolarity newGame) : base(newGame) { MagneticRadius = 250; RepelRadius = 100; + HP = 5; + FleeVelocity = 5; ActVelocity = 2; ChargeVelocity = 1.5f;